e31249b407a32d1f3818e8b29d2a08c38483a802,Tests/ERXTest/Sources/com/webobjects/eoaccess/ERXEntityTest.java,ERXEntityTest,testHasExternalName,#,78
Before Change
entityUrl = new java.net.URL(model.pathURL()+"/Company.plist");
} catch (java.net.MalformedURLException e) { throw new IllegalArgumentException(e.getMessage()); }
NSDictionary plist = NSPropertyListSerialization.dictionaryWithPathURL(entityUrl);
ERXEntity erxentity = new ERXEntity(plist, model);
After Change
entityUrl = new java.net.URL(model.pathURL()+"/Company.plist");
} catch (java.net.MalformedURLException e) { throw new IllegalArgumentException(e.getMessage()); }
NSDictionary plist = (NSDictionary)NSPropertyListSerialization.propertyListWithPathURL(entityUrl);
ERXEntity erxentity = new ERXEntity(plist, model);